/* Beautiful Hotel Video Section */
.hotel_video_section {
    position: relative;
    width: 100%;
    background: #f7f7f7;
    padding: 80px 0 0 0;
    overflow: hidden;
}

/* Force Video Container Height */
.hotel_video_section .video_container {
    height: 90vh !important;
    min-height: 700px !important;
    max-height: none !important;
}

/* Elegant Title Section Above Video */
.video_title_section {
    background: linear-gradient(135deg, #232323 0%, #2a2a2a 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.video_title_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E1BD85" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23E1BD85" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23E1BD85" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23E1BD85" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23E1BD85" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.title_wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.title_divider_top {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #E1BD85, transparent);
    margin: 0 auto 30px;
    position: relative;
}

.title_divider_top::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #E1BD85;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(225, 189, 133, 0.3);
}

.hotel_main_title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #E1BD85;
    margin: 0 0 15px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(225, 189, 133, 0.3);
    }
    100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 30px rgba(225, 189, 133, 0.6);
    }
}

.hotel_subtitle {
    font-family: 'Hind', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #fff;
    margin: 0 0 25px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hotel_description {
    font-family: 'Hind', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.title_divider_bottom {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E1BD85, transparent);
    margin: 0 auto;
    position: relative;
}

.title_divider_bottom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #E1BD85;
    border-radius: 50%;
}

/* Clean Video Container */
.video_container {
    position: relative;
    width: 100%;
    height: 90vh !important;
    min-height: 700px !important;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 0;
}

.video_container video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    filter: brightness(0.95) contrast(1.15) saturate(1.1);
    transition: filter 0.3s ease;
    min-height: 700px !important;
}

.video_container:hover video {
    filter: brightness(1) contrast(1.25) saturate(1.15);
}

/* Hidden Video Controls */
.video_controls_overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.video_container:hover .video_controls_overlay {
    opacity: 1;
}

.control_buttons {
    display: flex;
    gap: 10px;
    background: rgba(35, 35, 35, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 12px;
    border: 1px solid rgba(225, 189, 133, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.control_btn {
    background: rgba(225, 189, 133, 0.2);
    border: 1px solid rgba(225, 189, 133, 0.4);
    color: #E1BD85;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.control_btn:hover {
    background: rgba(225, 189, 133, 0.8);
    color: #232323;
    transform: scale(1.1);
    border-color: #E1BD85;
    box-shadow: 0 0 15px rgba(225, 189, 133, 0.4);
}

/* Video Click to Play/Pause */
.video_container {
    cursor: pointer;
}

/* Responsive Design */
@media (min-width: 1400px) {
    .video_container {
        height: 90vh;
        min-height: 700px;
    }
}

@media (max-width: 1200px) {
    .hotel_main_title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hotel_subtitle {
        font-size: 1.5rem;
    }

    .hotel_description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hotel_video_section {
        padding: 60px 0 0 0;
    }

    .video_title_section {
        padding: 40px 0;
    }

    .hotel_main_title {
        font-size: 2.8rem;
        letter-spacing: 1px;
    }

    .hotel_subtitle {
        font-size: 1.2rem;
    }

    .hotel_description {
        font-size: 1rem;
        padding: 0 20px;
    }

    .video_container {
        height: 75vh;
        min-height: 500px;
    }

    .control_btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hotel_video_section {
        padding: 40px 0 0 0;
    }

    .video_title_section {
        padding: 30px 0;
    }

    .hotel_main_title {
        font-size: 2.2rem;
    }

    .hotel_subtitle {
        font-size: 1rem;
    }

    .hotel_description {
        font-size: 0.9rem;
    }

    .video_container {
        height: 65vh;
        min-height: 400px;
    }

    .control_buttons {
        padding: 6px 10px;
        gap: 8px;
    }

    .control_btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Video State Changes */
.video_playing .video_controls_overlay {
    opacity: 1;
}

.video_loading .video_container video {
    filter: brightness(0.7) contrast(1);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hotel_main_title {
        animation: none;
    }

    .control_btn:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .video_title_section {
        background: #000;
    }

    .hotel_main_title {
        color: #E1BD85;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .hotel_subtitle {
        color: #fff;
    }

    .hotel_description {
        color: #fff;
    }
}

/* Force Video Height - Override any conflicting styles */
#modernHotelVideo {
    height: 100% !important;
    min-height: 700px !important;
}

.video_container,
.hotel_video_section .video_container {
    height: 90vh !important;
    min-height: 700px !important;
    max-height: none !important;
}